* {  
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lora';
}

/*-----NAV BAR-----*/

.header-container {
  background-color: #19212E;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 999;
  }
  
  nav {
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  }
  
  nav img {
  height: 80px;
  }
  
  .nav-links {
  display: flex;
  list-style: none;
  justify-content: center; 
  align-items: center; 
  flex-grow: 1;
  padding-right: 150px;
  }
  
  .nav-links li {
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  }
  
  .nav-links li a {
  color: white;
  font-size: 20px;
  padding: 10px;
  text-decoration: none;
  }
  
  
  .nav-links li a:hover {
   color: red;
   transition: color 0.5s ease;
  }
  
  .nav-links li:hover {
    transform: scale(1.15);
    transition: transform 0.2s ease ;
  }
  
  .burger {
  display: none;
  cursor: pointer;
  }
  
  .burger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px;
  transition: all 0.3s ease;
  }
  
  @media screen and (max-width: 1200px) {
  .nav-links {
  padding-right: 70px;
  }
  
  .nav-links li {
    padding: 5px;
  }
  
  .nav-links li a{
    font-size: 17px;
  }
  }
  
  @media screen and (max-width: 800px) {
    .nav-links {
      display: none; 
      flex-direction: column;
      position: absolute;
      border-radius: 10px;
      border: solid 3px black;
      top: 90px;
      margin-left: 45%;
      justify-content: center;
      background-color: #11151C;
      width: 50%;
      padding-right: 0px;
    }
  
    nav img {
      height: 50px;
    }
  
    .nav-links li {
      margin: 0.5rem 0;
    }
  
    .burger {
      display: block;
    }
  
    body.menu-active .nav-links {
      display: flex;
    }
  
    body.menu-active .line1 {
      transform: rotate(-45deg) translate(-5px, 6px);
    }
  
    body.menu-active .line2 {
      opacity: 0;
    }
  
    body.menu-active .line3 {
      transform: rotate(45deg) translate(-5px, -6px);
    }
  }  

  /*-----MAIN CONTENT-----*/

  main {
    background-color: #364156;
    color: white;
    padding-top: 25px;
  }

  .content-box {
    display: flex;
    flex-direction: row;
    margin: 0px 60px 0px;
    padding: 10px 50px 10px;
    border-radius: 10px;
    height: auto;
    background-color: #212D40;
  }

  .section {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-top: 10px;
  }

  .section p {
    padding-top: 20px;
    text-align: center;
  }

  .center-image,
  .product {
    text-align: center;
  }

  .center-image img,
  .product img {
    border-radius: 10px;
  }

  .product img{
    height: 140px;
    width: 250px;
  }
  
  .content-box h2 {
    font-size: 40px;
    text-align: center;
    padding-bottom: 20px;
    color: white;
    font-style: italic;
  }

  .content-box h3{
    font-size: 25px;
    text-align: center;
    padding-bottom: 30px;
    color: white;
    font-style: italic;
  }

  @media screen and (max-width: 1400px) {
    .center-image img{
      transform: scale(0.8);
    }

    .product img{
      transform: scale(0.8);
    }
  }

  @media screen and (max-width: 1200px) {

    .content-box p
    .header-box p {
      padding-top: 10px;
    }

    .content-box h2{
      font-size: 35px;
    }
  }

  @media screen and (max-width: 1100px) {
    .content-box {
      flex-direction: column;
    }

    .center-image img{
      transform: scale(1);
    }

    .product img{
      transform: scale(1);
    }

    .nav-links li a{
      padding: 5px;
    }

  }

  @media screen and (max-width: 620px) {
    .center-image img{
      height: 250px;
    }
  }


  @media screen and (max-width: 520px) {
    
  
    h2 {
      font-size: 30px;
    }

    .content-box {
      margin: 0px 25px 0px;  
    }

  }

  /*-----FOOTER-----*/

  footer {
    background: linear-gradient(to top, #212D40, #364156);
    color: #000000;
  }
  
  .footer-content {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    justify-content: center;
    text-align: center;
  }
  
  .footer-content img {
    height: 30px;
    margin-left: 20px;
    transition: transform 0.3s ease;
  }
  
  .footer-content a:hover img {
    transform: scale(1.1);
  }

  footer p {
    font-size: 16px;
    font-style: italic;
  }

  @media screen and (max-width: 800px) {
    footer p {
      font-size: 14px; 
    }
  }

/*-----BUTTON-----*/

.go-button {
  width: auto;
  display: inline-block;
  padding: 10px 20px;
  background-color: #11151C;
  color: white;
  border-radius: 10px;
  border: 2px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  font-weight: bold;
}

.go-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1); 
  transform: scale(0);
  transition: transform 0.3s ease-in-out;
  border-radius: inherit;
}

.go-button:hover {
  border-color: white;
  background-color: black ; 
  color: white;
}

.go-button:hover::before {
  transform: scale(1);
}

.go-button {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

/*-----SLIDER-----*/

  #slider-header {
    padding-top: 20px;
    text-align: center;
    font-size: 40px;
    background-color: #364156;
  }
  
  .slider-container{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #364156;
    padding: 0px 60px 0px;
  }
  
  .wrapper {
    background-color: #364156;
    padding: 20px 20px;
    text-align: center;
    max-width: 1100px;
    width: 100%;
    position: relative;
  }

  .wrapper i {
    border-radius: 10%;
    top: 50%;
    height: 50px;
    width: 50px;
    cursor: pointer;
    font-size: 1.25rem;
    position: absolute;
    text-align: center;
    line-height: 50px;
    transform: translateY(-50%);
    transition: transform 0.1s linear;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #left::before,
  #right::before {
  content: "";
  display: inline-block;
  border-style: solid;
  border-width: 0.4em 0.4em 0 0;
  border-color: black;
  height: 0.5em;
  width: 0.5em;
  transform: rotate(-135deg);
  margin-right: 0.5em;
}

#right::before {
  transform: rotate(45deg);
  margin-left: 0.5em;
  margin-right: 0;
}

  .wrapper i:active{
    transform: translateY(-50%) scale(0.85);
  }

  .wrapper i:first-child{
    left: -22px;
  }
  .wrapper i:last-child{
    right: -22px;
  }
  .wrapper .carousel{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 12px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    border-radius: 8px;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .carousel::-webkit-scrollbar {
    display: none;
  }
  .carousel.no-transition {
    scroll-behavior: auto;
  }
  .carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
  }
  .carousel.dragging .card {
    cursor: grab;
    user-select: none;
  }
  .carousel :where(.card, .img) {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .carousel .card {
    scroll-snap-align: start;
    height: 300px;
    list-style: none;
    background-color: #151B25;
    cursor: pointer;
    padding-bottom: 15px;
    flex-direction: column;
  }
  
  .card {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    margin: 20px 0px 20px;
  }
  
  .card span {
    padding: 0px 10px 0px;
  }
  
  .card .img img {
    height: 149px;
    width: 250px;
    object-fit: cover;
  }
  .slider-container .carousel .card h2 {
    font-weight: 500;
    font-size: 1.1rem;
    font-style: bold;
    margin: 30px 0px 5px;
  }
  
  .slider-container .carousel .card .go-button {
    margin-top: 20px;
  }
  
  @media screen and (max-width: 1000px) {
    .wrapper .carousel {
      grid-auto-columns: calc((100% / 2) - 9px);
    }
  }
  @media screen and (max-width: 710px) {
    .wrapper .carousel {
      grid-auto-columns: 100%;
    }
  }
  @media screen and (max-width: 520px) {
    .card .img img{
      width: 200px;
    }

    .slider-container{
      margin: 0px 30px 0px;
    }
  }

  /*-----TABLE-----*/

  table {
    margin: auto;
    border-collapse: collapse;
    width: 80%; /* Adjust the width as needed */
    background-color: #ffffff;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    color: black;
    border: 3px solid black;
  }
  
  th, td {
    border: 1px solid #e0e0e0;
    padding: 12px;
    text-align: center;
  }
  
  th {
    background-color: #f5f5f5;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  tr:nth-child(even) {
    background-color: #f9f9f9;
  }
  
  tr:hover {
    background-color: #f0f0f0;
  }

  #bold {
    font-weight: bold;
  }